home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / contrib / amiga / AmigaSrc / DMakefile next >
Encoding:
Makefile  |  1992-05-05  |  1.2 KB  |  39 lines

  1. # Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
  2. #
  3. # Permission to use, copy, modify, and distribute this material
  4. # for any purpose and without fee is hereby granted, provided
  5. # that the above copyright notice and this permission notice
  6. # appear in all copies, and that the name of Bellcore not be
  7. # used in advertising or publicity pertaining to this
  8. # material without the specific, prior written permission
  9. # of an authorized representative of Bellcore.  BELLCORE
  10. # MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
  11. # OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS",
  12. # WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
  13. #
  14. CC = dcc
  15. CFLAGS = -r -ms -I.
  16.  
  17. LDLIBS = UULIB:uucp.lib
  18.  
  19. CONFIGDIR = /
  20. UUCPINCLUDE = uucp:src/include
  21.  
  22. LOCALCFLAGS= -I$(CONFIGDIR) $(CFLAGS) -I$(UUCPINCLUDE)
  23.  
  24. SRCS = fakeNewWsh.c fakePipe.c getfilename.c ilbmToGIF.c showPartial.c svxToUlaw.c
  25. OBJS = fakeNewWsh.o fakePipe.o getfilename.o ilbmToGIF.o showPartial.o svxToUlaw.o
  26. APPS = fakeNewWsh fakePipe getfilename ilbmToGIF showPartial svxToUlaw
  27.  
  28. all: $(APPS)
  29.  
  30. $(APPS) : $(OBJS)
  31.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS)
  32.  
  33. $(OBJS) : $(SRCS)
  34.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) -c
  35.  
  36. clean:
  37.         -Delete $(APPS) *.o *.BAK
  38.  
  39.